home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / texsis / Unix / unbundle < prev   
Text File  |  1992-04-16  |  512b  |  22 lines

  1. #!/bin/sh
  2. # unbundle - Use this shell script to unbundle the Unix bundle files for
  3. #            TeXsis.   
  4. # (This isn't very useful if it is in the bundles, so send it separately.)
  5. #
  6. # usage: unbundle [-c]
  7. #
  8. # The -c argument is passed to the bundles and causes existing
  9. # files to be clobbered.
  10. #
  11. # ---------- first uncompress the files if they were compressed
  12. #uncompress TEXSIS??.Z
  13.  
  14. # ---------- then run each bundle through /bin/sh
  15. a=`/bin/ls TEXSIS??`
  16. for f in $a
  17. do
  18.     echo UNPACKING $f...
  19.     sh  $f $1
  20. done
  21.  
  22.